home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Dec / di9812me / PluginSample / 2 / plugin1 / main.pas next >
Encoding:
Pascal/Delphi Source File  |  1998-03-23  |  213 b   |  15 lines

  1. unit main;
  2.  
  3. interface
  4.  
  5.     procedure DescribePlugin(var Desc: string); export; stdcall;
  6.  
  7. implementation
  8.  
  9. procedure DescribePlugin(var Desc: string);
  10. begin
  11.     Desc := 'Test plugin v1.00';
  12. end;
  13.  
  14. end.
  15.